home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 September / macformat-094.iso / MacFormat CD / MacFormatReadMe / Internal_11_agree.ls < prev    next >
Encoding:
Text File  |  2000-07-21  |  481 b   |  21 lines

  1. on mouseEnter
  2.   put "With your agreement to the conditions, you can use this MacFormat Cover CD..." into line 1 of field "infoField"
  3. end
  4.  
  5. on mouseLeave
  6.   put EMPTY into member "infoField"
  7. end
  8.  
  9. on mouseDown
  10.   sprite(the clickOn).loc = sprite(the clickOn).loc + point(3, 3)
  11. end
  12.  
  13. on mouseUpOutSide
  14.   sprite(the clickOn).loc = sprite(the clickOn).loc + point(-3, -3)
  15. end
  16.  
  17. on mouseUp
  18.   sprite(the clickOn).loc = sprite(the clickOn).loc + point(-3, -3)
  19.   play movie "MacFormatIndex"
  20. end
  21.